home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0195.lzh / AMOSLIST / text0179.txt < prev    next >
Encoding:
Text File  |  1995-02-01  |  536 b   |  26 lines

  1.  
  2.  
  3. On Wed, 18 Jan 1995, mef4 wrote:
  4.  
  5. > >                 screen 1 
  6. > >                 for i= 1 to 100
  7. > >                  circle rnd(319),rnd(199),rnd(15)
  8. > >                 next i
  9. > >                 screen 0
  10. > >
  11. > > The other way is too inflexible and can lead to inefficient behaviour,
  12. > > and probably will interfere with other programming techniques.  
  13. > You mean
  14. > for(i=0;i<100;i++)
  15. > {
  16. >    circle(1,rnd(319),rnd(199),rnd(15));
  17. > } ?
  18. Seeing code like this has definitely converted me to the MARP/C++ idea.
  19. Richard
  20.  
  21.  
  22.  
  23.